home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MRAC / Positions / p-remove next >
Text File  |  1998-08-11  |  320b  |  15 lines

  1. p-remove position sequence 
  2.  
  3. 0-based 
  4.  
  5. This function is designed to remove items occupying a specific position in a sequence.
  6.  
  7. (p-remove 7 (g-integer 0 11))
  8. => (0 1 2 3 4 5 6 8 9 10 11)
  9.  
  10. (p-remove '(4 6 8) (g-integer 0 11))
  11. => (0 1 2 3 5 7 9 10 11)
  12.  
  13. (p-remove '(4 6 8) '(a b c d e f g h i j k l))
  14. => (a b c d f h j k l)
  15.